summaryrefslogtreecommitdiffstats
path: root/gettext-runtime/src
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2006-07-25 11:19:59 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:13:41 +0200
commit0c5db0a77cb1b631382c69566504028fd3bd1dca (patch)
tree352682e52b6d3d7b3e5ff61ea61b3ed1d9508ef0 /gettext-runtime/src
parent83d7a65a1191d819d6eec8cfbf91d05b92cde4b5 (diff)
downloadexternal_gettext-0c5db0a77cb1b631382c69566504028fd3bd1dca.zip
external_gettext-0c5db0a77cb1b631382c69566504028fd3bd1dca.tar.gz
external_gettext-0c5db0a77cb1b631382c69566504028fd3bd1dca.tar.bz2
Remove VMS support.
Diffstat (limited to 'gettext-runtime/src')
-rw-r--r--gettext-runtime/src/ChangeLog5
-rw-r--r--gettext-runtime/src/Makefile.am5
-rw-r--r--gettext-runtime/src/Makefile.vms104
3 files changed, 5 insertions, 109 deletions
diff --git a/gettext-runtime/src/ChangeLog b/gettext-runtime/src/ChangeLog
index 15977d8..6410471 100644
--- a/gettext-runtime/src/ChangeLog
+++ b/gettext-runtime/src/ChangeLog
@@ -1,3 +1,8 @@
+2006-07-25 Bruno Haible <bruno@clisp.org>
+
+ * Makefile.vms: Remove file.
+ * Makefile.am (EXTRA_DIST): Remove Makefile.vms.
+
2006-07-21 Bruno Haible <bruno@clisp.org>
* gettext-0.15 released.
diff --git a/gettext-runtime/src/Makefile.am b/gettext-runtime/src/Makefile.am
index eb95593..13dcf2e 100644
--- a/gettext-runtime/src/Makefile.am
+++ b/gettext-runtime/src/Makefile.am
@@ -64,11 +64,6 @@ RELOCATABLE_CONFIG_H_DIR = ..
@SET_RELOCATABLE@
-# VMS support.
-
-EXTRA_DIST += Makefile.vms
-
-
# Woe32 support.
EXTRA_DIST += Makefile.msvc
diff --git a/gettext-runtime/src/Makefile.vms b/gettext-runtime/src/Makefile.vms
deleted file mode 100644
index 1cf17c6..0000000
--- a/gettext-runtime/src/Makefile.vms
+++ /dev/null
@@ -1,104 +0,0 @@
-# -*- Makefile -*- for gettext-runtime/src on VMS using the MMS utility
-
-#### Start of system configuration section. ####
-
-# Directories used by "make install":
-prefix = SYS$DATA:[
-exec_prefix = $(prefix)
-bindir = $(exec_prefix).bin
-datadir = $(prefix).share
-localedir = $(datadir).locale
-
-# Programs used by "make":
-
-CC = cc
-
-# These flags affect binary compatibility. GNU gettext does not need them,
-# but other packages do, and we need to be binary compatible with them.
-ABIFLAGS = /name=(as_is,short) /float=ieee
-
-WARN_CFLAGS = /warning
-
-OPTIMFLAGS = /optimize
-
-CFLAGS = $(ABIFLAGS) $(WARN_CFLAGS) $(OPTIMFLAGS)
-DEFS = "VMS=1","HAVE_CONFIG_H=1","LOCALEDIR=""$(localedir)]"""
-
-INCLUDES = /include=([],[-],[-.intl],[-.lib],[-.-.gettext-tools.lib])
-
-LDADD = libiconv.opt/opt,[-.-.vms]link_options.opt
-
-LN = copy
-RM = delete
-
-# Programs used by "make install":
-INSTALL = copy
-INSTALL_PROGRAM = copy
-INSTALL_DATA = copy
-
-#### End of system configuration section. ####
-
-PROGRAMS = gettext.exe, ngettext.exe, envsubst.exe
-
-gettext_OBJECTS = gettext.obj
-ngettext_OBJECTS = ngettext.obj
-envsubst_OBJECTS = envsubst.obj
-
-all : $(PROGRAMS)
- write sys$output "Nothing else to be done for 'all'."
-
-gettext.obj : gettext.c
- $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS),"INSTALLPREFIX=""$(prefix)]""","INSTALLDIR=""$(bindir)]""") gettext.c
-
-ngettext.obj : ngettext.c
- $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS),"INSTALLPREFIX=""$(prefix)]""","INSTALLDIR=""$(bindir)]""") ngettext.c
-
-envsubst.obj : envsubst.c
- $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS),"INSTALLPREFIX=""$(prefix)]""","INSTALLDIR=""$(bindir)]""") envsubst.c
-
-libiconv.opt :
- if f$search("sys$library:libiconv.olb") .nes. "" then $(LN) [-.-.vms]with-libiconv.opt libiconv.opt
- if f$search("sys$library:libiconv.olb") .eqs. "" then $(LN) [-.-.vms]without-libiconv.opt libiconv.opt
-
-gettext.exe : $(gettext_OBJECTS),libiconv.opt
- link /executable=gettext.exe $(gettext_OBJECTS),[-.lib]grt.olb/lib,[-.intl]intl.olb/lib,$(LDADD)
-
-ngettext.exe : $(ngettext_OBJECTS),libiconv.opt
- link /executable=ngettext.exe $(ngettext_OBJECTS),[-.lib]grt.olb/lib,[-.intl]intl.olb/lib,$(LDADD)
-
-envsubst.exe : $(envsubst_OBJECTS),libiconv.opt
- link /executable=envsubst.exe $(envsubst_OBJECTS),[-.lib]grt.olb/lib,[-.intl]intl.olb/lib,$(LDADD)
-
-install : all
- create /directory $(prefix)]
- create /directory $(exec_prefix)]
- create /directory $(bindir)]
- $(INSTALL_PROGRAM) gettext.exe $(bindir)]gettext.exe
- $(INSTALL_PROGRAM) ngettext.exe $(bindir)]ngettext.exe
- $(INSTALL_PROGRAM) envsubst.exe $(bindir)]envsubst.exe
-
-installdirs :
- create /directory $(prefix)]
- create /directory $(exec_prefix)]
- create /directory $(bindir)]
-
-uninstall :
- $(RM) $(bindir)]gettext.exe;
- $(RM) $(bindir)]ngettext.exe;
- $(RM) $(bindir)]envsubst.exe;
-
-check : all
- write sys$output "Nothing else to be done for 'check'."
-
-mostlyclean : clean
- write sys$output "Nothing else to be done for 'mostlyclean'."
-
-clean :
- $(RM) *.obj;*
- $(RM) *.exe;*
-
-distclean : clean
- write sys$output "Nothing else to be done for 'distclean'."
-
-maintainer-clean : distclean
- write sys$output "Nothing else to be done for 'maintainer-clean'."