Update of /cvsroot/gtk2hs/gtk2hs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8647
Modified Files:
configure.in ChangeLog
Log Message:
Make install-sh executable after configuring so installing works on Solaris.
Index: configure.in
===================================================================
RCS file: /cvsroot/gtk2hs/gtk2hs/configure.in,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- configure.in 10 Aug 2004 12:21:03 -0000 1.41
+++ configure.in 11 Aug 2004 08:41:55 -0000 1.42
@@ -603,7 +603,7 @@
mk/config.mk
mk/chsDepend
c2hs/toplevel/C2HSConfig.hs
-],[chmod a+x mk/chsDepend])
+],[chmod a+x mk/chsDepend && chmod a+x install-sh])
dnl ...and chat with the user
echo "**************************************************"
@@ -625,16 +625,16 @@
fi;
echo "* *"
fi;
-if test $ENABLE_OPENGL = no; then
- echo "* Warning: OpenGL support is not available: *"
- if test x$FOUNDGLEXT = xno; then
- echo "* - the GtkGLExt widget is not installed *"
- fi;
- if test x$FOUNDHOPENGL = xno; then
- echo "* - HOpenGL is not installed in the specified *"
- echo "* GHC installation *"
- fi;
- echo "* *"
-fi;
+dnl if test $ENABLE_OPENGL = no; then
+dnl echo "* Warning: OpenGL support is not available: *"
+dnl if test x$FOUNDGLEXT = xno; then
+dnl echo "* - the GtkGLExt widget is not installed *"
+dnl fi;
+dnl if test x$FOUNDHOPENGL = xno; then
+dnl echo "* - HOpenGL is not installed in the specified *"
+dnl echo "* GHC installation *"
+dnl fi;
+dnl echo "* *"
+dnl fi;
echo "* Now do \"(g)make\" followed by \"(g)make install\" *"
echo "**************************************************"
Index: ChangeLog
===================================================================
RCS file: /cvsroot/gtk2hs/gtk2hs/ChangeLog,v
retrieving revision 1.222
retrieving revision 1.223
diff -u -d -r1.222 -r1.223
--- ChangeLog 10 Aug 2004 14:51:45 -0000 1.222
+++ ChangeLog 11 Aug 2004 08:41:55 -0000 1.223
@@ -1,3 +1,8 @@
+2004-08-11 Axel Simon <A....@ke...>
+
+ * configure.in: Make install-sh executable and don't inform about
+ OpenGL status since it doesn't work anyway.
+
2004-08-10 Duncan Coutts <du...@co...>
* configure.in: require autoconf 2.50 or greater, 2.13 doesn't work.
|