Revision: 26094 http://sourceforge.net/p/gar/code/26094 Author: lblume Date: 2017-01-30 14:27:43 +0000 (Mon, 30 Jan 2017) Log Message: ----------- vim/trunk: Adjust dependencies for Solaris 9
Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2017-01-30 10:10:50 UTC (rev 26093) +++ csw/mgar/pkg/vim/trunk/Makefile 2017-01-30 14:27:43 UTC (rev 26094) @@ -24,9 +24,9 @@ GARCOMPILER = GCC5 # Next build should be using GCC4 everywhere -- lblume 20150813 -#ifneq ($(shell /usr/bin/uname -r),5.9) -# GARCOMPILER = SOS12U3 -#endif +ifeq ($(shell /usr/bin/uname -r),5.9) + GARCOMPILER = GCC4 +endif PACKAGES = CSWvim CATALOGNAME_CSWvim = vim @@ -38,8 +38,15 @@ BUILD_DEP_PKGS += CSWpython27-dev +# Depenencies on S9 are older too. +# Why do I keep packaging for it anyway.... Pity? +ifeq ($(shell /usr/bin/uname -r),5.9) RUNTIME_DEP_PKGS_CSWvim += CSWlibintl8 RUNTIME_DEP_PKGS_CSWvim += CSWlibncurses5 +else +RUNTIME_DEP_PKGS_CSWvim += CSWlibintl9 +RUNTIME_DEP_PKGS_CSWvim += CSWlibncurses6 +endif RUNTIME_DEP_PKGS_CSWvim += CSWlibiconv2 RUNTIME_DEP_PKGS_CSWvim += CSWlibpython2-7-1-0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.