Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Libpng
提交
6bc7fc80
T
Third Party Libpng
项目概览
OpenHarmony
/
Third Party Libpng
大约 1 年 前同步成功
通知
4
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Libpng
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
6bc7fc80
编写于
9月 01, 2011
作者:
G
Glenn Randers-Pehrson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[master] Added SunOS support to configure.ac and Makefile.am
but configure and Makefile.in were not updated.
上级
5b03469a
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
31 addition
and
6 deletion
+31
-6
ANNOUNCE
ANNOUNCE
+4
-2
CHANGES
CHANGES
+3
-3
Makefile.am
Makefile.am
+6
-0
configure.ac
configure.ac
+18
-1
未找到文件。
ANNOUNCE
浏览文件 @
6bc7fc80
Libpng 1.4.9beta01 -
July 1
2, 2011
Libpng 1.4.9beta01 -
September
2, 2011
This is not intended to be a public release. It will be replaced
within a few weeks by a public version or by another test version.
...
...
@@ -26,9 +26,11 @@ Other information:
Changes since the last public release (1.4.8):
version 1.4.9beta01 [
July 1
2, 2011]
version 1.4.9beta01 [
September
2, 2011]
Added vstudio/* and CMakeLists to EXTRA_DIST in Makefile.in and Makefile.am
Updated contrib/pngminus/makefile.std (Samuli Souminen)
Added SunOS support to configure.ac and Makefile.am (but configure and
Makefile.in were not updated)
Send comments/corrections/commendations to glennrp at users.sourceforge.net
or to png-mng-implement at lists.sf.net (subscription required; visit
...
...
CHANGES
浏览文件 @
6bc7fc80
#if 0
libpng_changes(){ /*
CHANGES - changes for libpng
version 0.2
...
...
@@ -2826,14 +2825,15 @@ version 1.4.8rc01 [June 30, 2011]
version 1.4.8 [July 7, 2011]
No changes.
version 1.4.9beta01 [
July 1
2, 2011]
version 1.4.9beta01 [
September
2, 2011]
Added vstudio/* and CMakeLists to EXTRA_DIST in Makefile.in and Makefile.am
Updated contrib/pngminus/makefile.std (Samuli Souminen)
Added SunOS support to configure.ac and Makefile.am (but configure and
Makefile.in were not updated)
Send comments/corrections/commendations to glennrp at users.sourceforge.net
or to png-mng-implement at lists.sf.net (subscription required; visit
https://lists.sourceforge.net/lists/listinfo/png-mng-implement).
Glenn R-P
*/ }
#endif
Makefile.am
浏览文件 @
6bc7fc80
...
...
@@ -38,7 +38,13 @@ libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS = -no-undefined -export-dynamic \
if
HAVE_LD_VERSION_SCRIPT
# Versioned symbols and restricted exports
if
HAVE_SOLARIS_LD
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@
_la_LDFLAGS
+=
-Wl
,-M Wl,libpng.vers
else
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@
_la_LDFLAGS
+=
-Wl
,--version-script
=
libpng.vers
endif
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@
_la_DEPENDENCIES
=
libpng.vers
else
# Only restricted exports when possible
...
...
configure.ac
浏览文件 @
6bc7fc80
...
...
@@ -77,7 +77,24 @@ case $host in
AC_MSG_RESULT(no)
;;
* )
GLD=`$LD --help < /dev/null 2>/dev/null | grep version-script`
AC_MSG_CHECKING([if using Solaris linker])
SLD=`$LD --version 2>&1 | grep Solaris`
if test "$SLD"; then
have_solaris_ld=yes
AC_MSG_RESULT(yes)
else
have_solaris_ld=no
AC_MSG_RESULT(no)
fi
AM_CONDITIONAL(HAVE_SOLARIS_LD, test "$have_solaris_ld" = "yes")
if test "$have_solaris_ld" = "yes"; then
GLD=`$LD --help < /dev/null 2>&1 | grep 'M mapfile'`
else
GLD=`$LD --help < /dev/null 2>/dev/null | grep version-script`
fi
if test "$GLD"; then
have_ld_version_script=yes
AC_MSG_RESULT(yes)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录