about summary refs log tree commit diff
path: root/config.mk.in
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-04-02 02:28:23 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-04-02 02:28:23 +0000
commite284dfd09a24b9ae048612f6528c222828d3d9f4 (patch)
tree921e45a3b0185fce630eefa51fb9451589be02ac /config.mk.in
parent89280ede1fdda0257c4788746ae6cc7dc2287831 (diff)
downloadnetpbm-mirror-e284dfd09a24b9ae048612f6528c222828d3d9f4.tar.gz
netpbm-mirror-e284dfd09a24b9ae048612f6528c222828d3d9f4.tar.xz
netpbm-mirror-e284dfd09a24b9ae048612f6528c222828d3d9f4.zip
Fix bug: inconsistent use of upper and lower case Y and N in make file variables. Make it consistently upper case
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2175 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'config.mk.in')
-rw-r--r--config.mk.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/config.mk.in b/config.mk.in
index bc1d2804..7760bfb5 100644
--- a/config.mk.in
+++ b/config.mk.in
@@ -503,7 +503,7 @@ LINUXSVGAHDR_DIR =
 #LINUXSVGALIB = /usr/lib/libvga.so
 #LINUXSVGAHDR_DIR = /usr/include/vgalib
 
-# If you don't want any network functions, set OMIT_NETWORK to "y".
+# If you don't want any network functions, set OMIT_NETWORK to "Y".
 # The only thing that requires network functions is the option in
 # ppmtompeg to run it on multiple computers simultaneously.  On some
 # systems network functions don't work or we haven't figured out how to 
@@ -512,11 +512,11 @@ OMIT_NETWORK =
 #DJGPP/Windows, Tru64:
 #   (there's some minor header problem that prevents network functions from 
 #   building on Tru64 2000.10.06)
-#OMIT_NETWORK = y
+#OMIT_NETWORK = Y
 
 # These are -l options to link in the network libraries.  Often, these are
 # built into the standard C library, so this can be null.  This is irrelevant
-# if OMIT_NETWORK is "y".
+# if OMIT_NETWORK is "Y".
 
 NETWORKLD = 
 # Solaris, SunOS:
@@ -602,12 +602,12 @@ NETPBMLIBSUFFIX = so
 # Windows shared library:
 #NETPBMLIBSUFFIX = dll
 
-#STATICLIB_TOO is "y" to signify that you want a static library built
+#STATICLIB_TOO is "Y" to signify that you want a static library built
 #and installed in addition to whatever library type you specified by
 #NETPBMLIBTYPE.  If NETPBMLIBTYPE specified a static library,
 #STATICLIB_TOO simply has no effect.
-STATICLIB_TOO = y
-#STATICLIB_TOO = n
+STATICLIB_TOO = Y
+#STATICLIB_TOO = N
 
 #STATICLIBSUFFIX is the suffix that static libraries have.  It's
 #meaningless if you aren't building static libraries.