Change FC_Initialize to FCInitialize

This commit is contained in:
syd%netscape.com 1999-09-05 03:26:34 +00:00
parent f6a1ee8672
commit cdff6a5982
2 changed files with 5 additions and 5 deletions

6
configure vendored
View File

@ -9613,15 +9613,15 @@ _SAVE_LIBS=$LIBS
CFLAGS="$CFLAGS -I${FULLCIRCLE_DIR}"
LDFLAGS="$LDFLAGS -L${FULLCIRCLE_DIR}"
LIBS="-lfullsoft $LIBS"
echo $ac_n "checking "for FC_Initialize in -lfullsoft"""... $ac_c" 1>&6
echo "configure:9618: checking "for FC_Initialize in -lfullsoft"" >&5;
echo $ac_n "checking "for FCInitialize in -lfullsoft"""... $ac_c" 1>&6
echo "configure:9618: checking "for FCInitialize in -lfullsoft"" >&5;
cat > conftest.$ac_ext <<EOF
#line 9620 "configure"
#include "confdefs.h"
#include <stdio.h>
#include "fullcircle.h"
int main() {
FC_Initialize(); exit(0);
FCInitialize(); exit(0);
; return 0; }
EOF
if { (eval echo configure:9628: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then

View File

@ -2835,10 +2835,10 @@ _SAVE_LIBS=$LIBS
CFLAGS="$CFLAGS -I${FULLCIRCLE_DIR}"
LDFLAGS="$LDFLAGS -L${FULLCIRCLE_DIR}"
LIBS="-lfullsoft $LIBS"
AC_MSG_CHECKING("for FC_Initialize in -lfullsoft");
AC_MSG_CHECKING("for FCInitialize in -lfullsoft");
AC_TRY_LINK([ #include <stdio.h>
#include "fullcircle.h" ],
[ FC_Initialize(); exit(0); ],
[ FCInitialize(); exit(0); ],
[FULLCIRCLE_LIBS="-I${FULLCIRCLE_DIR} -L${FULLCIRCLE_DIR} -lfullsoft" result="yes"],
[MISSING_FULLCIRCLE=1 result="no"])
AC_MSG_RESULT("$result")