diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-04-08 18:35:06 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-04-08 18:35:06 -0500 |
commit | 29976f7d089ea9de53af84584f039e9ac9ade9c0 (patch) | |
tree | 5502da714d1dd7de94e0ca1075ddd17caaefc6e7 /config.h.in | |
parent | cc2fe8c20d726e0736718b380f221095b7b641ae (diff) | |
download | gwenview-29976f7d089ea9de53af84584f039e9ac9ade9c0.tar.gz gwenview-29976f7d089ea9de53af84584f039e9ac9ade9c0.zip |
Fix Gwenview rotated jpeg image save
This resolves Bug 1436
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 0f2bd4a..1fdda3a 100644 --- a/config.h.in +++ b/config.h.in @@ -1,5 +1,8 @@ /* config.h.in. Generated from configure.in by autoheader. */ +/* Define if building universal (internal helper macro) */ +#undef AC_APPLE_UNIVERSAL_BUILD + /* If we have libkipi installed */ #undef GV_HAVE_KIPI @@ -123,6 +126,10 @@ /* Suffix for lib directories */ #undef KDELIBSUFF +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + /* Name of package */ #undef PACKAGE @@ -138,6 +145,9 @@ /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME +/* Define to the home page for this package. */ +#undef PACKAGE_URL + /* Define to the version of this package. */ #undef PACKAGE_VERSION @@ -168,6 +178,18 @@ /* Defined if compiling without arts */ #undef WITHOUT_ARTS +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +# undef WORDS_BIGENDIAN +# endif +#endif + /* * jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system * headers and I'm too lazy to write a configure test as long as only |