Changes by: flatcap
Update of /cvsroot/linux-ntfs/linux-ntfs
In directory usw-pr-cvs1:/tmp/cvs-serv774
Modified Files:
Makefile.am Makefile.in configure configure.in
Log Message:
"configure --enable-really-static" and "make strip"
very little has changed, but configure has lots of line numbers
that have shift slightly
Index: Makefile.am
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/Makefile.am,v
retrieving revision 1.12
retrieving revision 1.13
diff -U2 -r1.12 -r1.13
--- Makefile.am 11 Jul 2002 16:45:07 -0000 1.12
+++ Makefile.am 21 Jul 2002 14:06:41 -0000 1.13
@@ -21,2 +21,5 @@
$(SHELL) ./config.status --recheck
+strip:
+ $(MAKE) -C ntfstools strip
+
Index: Makefile.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/Makefile.in,v
retrieving revision 1.19
retrieving revision 1.20
diff -U2 -r1.19 -r1.20
--- Makefile.in 11 Jul 2002 16:45:07 -0000 1.19
+++ Makefile.in 21 Jul 2002 14:06:41 -0000 1.20
@@ -395,4 +395,7 @@
$(SHELL) ./config.status --recheck
+strip:
+ $(MAKE) -C ntfstools strip
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
Index: configure
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/configure,v
retrieving revision 1.39
retrieving revision 1.40
diff -U2 -r1.39 -r1.40
--- configure 5 Jul 2002 17:07:48 -0000 1.39
+++ configure 21 Jul 2002 14:06:41 -0000 1.40
@@ -19,4 +19,6 @@
--enable-debug enable debugging"
ac_help="$ac_help
+ --enable-really-static completely static binaries"
+ac_help="$ac_help
--enable-shared[=PKGS] build shared libraries [default=yes]"
ac_help="$ac_help
@@ -752,5 +754,5 @@
echo $ac_n "checking host system type""... $ac_c" 1>&6
-echo "configure:755: checking host system type" >&5
+echo "configure:757: checking host system type" >&5
[...1101 lines suppressed...]
else
cat > conftest.$ac_ext <<EOF
-#line 6133 "configure"
+#line 6154 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
@@ -6153,5 +6174,5 @@
; return 0; }
EOF
-if { (eval echo configure:6156: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:6177: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest*
eval "ac_cv_func_$ac_func=yes"
@@ -6374,4 +6395,6 @@
s%@DEBUG_TRUE@%$DEBUG_TRUE%g
s%@DEBUG_FALSE@%$DEBUG_FALSE%g
+s%@REALLYSTATIC_TRUE@%$REALLYSTATIC_TRUE%g
+s%@REALLYSTATIC_FALSE@%$REALLYSTATIC_FALSE%g
s%@CXX@%$CXX%g
s%@CC@%$CC%g
Index: configure.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/configure.in,v
retrieving revision 1.35
retrieving revision 1.36
diff -U2 -r1.35 -r1.36
--- configure.in 5 Jul 2002 17:07:48 -0000 1.35
+++ configure.in 21 Jul 2002 14:06:41 -0000 1.36
@@ -31,5 +31,11 @@
)
+AC_ARG_ENABLE(really-static,
+ [ --enable-really-static completely static binaries], ,
+ enable_really_static=no
+)
+
AM_CONDITIONAL(DEBUG, test "$enable_debug" = yes)
+AM_CONDITIONAL(REALLYSTATIC, test "$enable_really_static" = yes)
dnl Checks for programs.
|