Revision: 3375
http://hugin.svn.sourceforge.net/hugin/?rev=3375&view=rev
Author: harryvanderwolf
Date: 2008-08-29 07:39:14 +0000 (Fri, 29 Aug 2008)
Log Message:
-----------
[Mac] minor changes to scripted build scripts
Modified Paths:
--------------
hugin/trunk/mac/scripted_universal_build/01-Compile_hugin.sh
hugin/trunk/mac/scripted_universal_build/02-Make_bundle.sh
Removed Paths:
-------------
hugin/trunk/mac/scripted_universal_build/hugin_config.h
Modified: hugin/trunk/mac/scripted_universal_build/01-Compile_hugin.sh
===================================================================
--- hugin/trunk/mac/scripted_universal_build/01-Compile_hugin.sh 2008-08-29 04:54:23 UTC (rev 3374)
+++ hugin/trunk/mac/scripted_universal_build/01-Compile_hugin.sh 2008-08-29 07:39:14 UTC (rev 3375)
@@ -108,8 +108,9 @@
- # patch hugin_config.h
- cp "../platforms/mac/scripted_universal_build/hugin_config.h" "src/hugin_config.h"
+ # copy preconfigured hugin_config_mac.h to hugin_config.h but save cmake created one
+ cp "src/hugin_config.h" "src/hugin_config.h.cmake"
+ cp "../src/hugin_config_mac.h" "src/hugin_config.h"
make;
make install;
Modified: hugin/trunk/mac/scripted_universal_build/02-Make_bundle.sh
===================================================================
--- hugin/trunk/mac/scripted_universal_build/02-Make_bundle.sh 2008-08-29 04:54:23 UTC (rev 3374)
+++ hugin/trunk/mac/scripted_universal_build/02-Make_bundle.sh 2008-08-29 07:39:14 UTC (rev 3375)
@@ -136,3 +136,7 @@
cp ../Hugin-Info.plist $H_app/Contents/Info.plist
cp ../hugin_stitch_project-Info.plist $HSP_app/Contents/Info.plist
+# Create PKGInfo files
+echo "APPLHgin" > $H_app/Contents/PkgInfo
+echo "APPL????" > $HSP_app/contents/PkgInfo
+
Deleted: hugin/trunk/mac/scripted_universal_build/hugin_config.h
===================================================================
--- hugin/trunk/mac/scripted_universal_build/hugin_config.h 2008-08-29 04:54:23 UTC (rev 3374)
+++ hugin/trunk/mac/scripted_universal_build/hugin_config.h 2008-08-29 07:39:14 UTC (rev 3375)
@@ -1,62 +0,0 @@
-#ifndef __CONFIG_H__
-
-/* Define to 1 if you have the <pano12/queryfeature.h> header file. */
-#define HAVE_PANO12_QUERYFEATURE_H 1
-
-/* various libraries. For compatability with the old source code
- * most cmake variables are defined under a second name as well */
-
-/* Define if you have JPEG library */
-#define JPEG_FOUND 1
-/* Define if you have JPEG library (old style) */
-#ifdef JPEG_FOUND
-#define HasJPEG 1
-#endif
-
-/* Define if you have PNG library */
-#define PNG_FOUND 1
-#ifdef PNG_FOUND
-#define HasPNG 1
-#endif
-
-/* Define if you have TIFF library */
-#define TIFF_FOUND 1
-#ifdef TIFF_FOUND
-#define HasTIFF 1
-#endif
-
-/* Define if you have OpenEXR library */
-#define OPENEXR_FOUND 1
-#ifdef OPENEXR_FOUND
-#define HasEXR 1
-#endif
-
-/* Define if you have Panotools library (pano13) */
-/* #undef TLALLI_FOUND 1 */
-#define PANO13_FOUND 1
-#define PANO12_FOUND 1
-
-#ifdef TLALLI_FOUND
-#define HasTLALLI 1
-#elif defined PANO13_FOUND
-#define HasPANO13 1
-#elif defined PANO12_FOUND
-#define HasPANO12 1
-#endif
-
-/* locate of the xrc files, as defined during configuration */
-#define INSTALL_LOCALE_DIR ""
-
-/* Location for XRC files and other data, as defined during configuration*/
-#define INSTALL_XRC_DIR ""
-
-/* Use exiv2, if found */
-#define EXIV2_FOUND 1
-#ifdef EXIV2_FOUND
-#define HUGIN_USE_EXIV2 1
-#endif
-
-/* Build a fully self contained OSX bundle (with embedded ressources) */
-#define MAC_SELF_CONTAINED_BUNDLE 1
-
-#endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|