the RPCTEST needs to be run earlier (because LIBS gets "too big" ;)
authorwarlord <warlord@cb58f699-b61c-0410-a6fe-9272a202ed29>
Fri, 1 Nov 2002 16:33:25 +0000 (16:33 +0000)
committerwarlord <warlord@cb58f699-b61c-0410-a6fe-9272a202ed29>
Fri, 1 Nov 2002 16:33:25 +0000 (16:33 +0000)
Fix that, and fix the 'if/else' argument order -- this should fix
for Solaris now.

git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@188 cb58f699-b61c-0410-a6fe-9272a202ed29

configure.ac

index 68d4624..2df7900 100644 (file)
@@ -47,6 +47,9 @@ else
     CXXFLAGS="$PTHREAD_CFLAGS $CXXFLAGS"
 fi
 
+# Test RPC now -- deal with it later
+ACX_RPCTEST([rpctest="yes"],[rpctest="no"])
+
 AC_ARG_WITH(dmalloc,
             AC_HELP_STRING([--with-dmalloc=PATH], [where dmalloc is installed]),
             [if test x_$with_dmalloc != x_/usr; then
@@ -154,8 +157,7 @@ AC_CONFIG_FILES([Makefile shib/Makefile schemas/Makefile eduPerson/Makefile \
                 configs/Makefile oncrpc/Makefile oncrpc/rpc/Makefile \
                 shib-target/Makefile shar/Makefile test/Makefile])
 
-# now test the rpc library, to see if we need to build our own
-ACX_RPCTEST([rpctest="no"],[rpctest="yes"])
+# now deal with the rpc library, to see if we need to build our own
 if test $rpctest = "no"; then
     WANT_SUBDIRS="oncrpc $WANT_SUBDIRS"
 fi