Skip to content
GitLab
Explorer
Connexion
Navigation principale
Rechercher ou aller à…
Projet
Aegisub
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Extraits de code
Déploiement
Releases
Registre de paquets
Registre de conteneur
Registre de modèles
Opération
Modules Terraform
Surveillance
Incidents
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Ce projet est archivé. Le dépôt et les autres ressources du projet sont en lecture seule.
Afficher davantage de fils d'Ariane
Kubat
Aegisub
Validations
ad7a8da8
Vérifiée
Valider
ad7a8da8
rédigé
4 years ago
par
Kubat
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
[build] assdraw compiles but SIGSEV at runtime...
parent
f2539329
Aucune branche associée trouvée
Aucune étiquette associée trouvée
1 requête de fusion
!7
WIP: Assdraw
Modifications
4
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
4 fichiers modifiés
.gitignore
+1
-0
1 ajout, 0 suppression
.gitignore
Makefile.inc.in
+1
-1
1 ajout, 1 suppression
Makefile.inc.in
assdraw/Makefile
+1
-1
1 ajout, 1 suppression
assdraw/Makefile
configure.ac
+16
-9
16 ajouts, 9 suppressions
configure.ac
avec
19 ajouts
et
11 suppressions
.gitignore
+
1
−
0
Voir le fichier @
ad7a8da8
...
@@ -68,6 +68,7 @@ packages/desktop/aegisub.desktop
...
@@ -68,6 +68,7 @@ packages/desktop/aegisub.desktop
packages/desktop/aegisub.desktop.template
packages/desktop/aegisub.desktop.template
packages/win_installer/vendor
packages/win_installer/vendor
src/aegisub
src/aegisub
assdraw/assdraw
Aegisub/
Aegisub/
src/libresrc/bitmap.cpp
src/libresrc/bitmap.cpp
src/libresrc/bitmap.h
src/libresrc/bitmap.h
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
Makefile.inc.in
+
1
−
1
Voir le fichier @
ad7a8da8
...
@@ -15,7 +15,7 @@ SYSTEM_LUAJIT = @with_system_luajit@
...
@@ -15,7 +15,7 @@ SYSTEM_LUAJIT = @with_system_luajit@
# BUILD OUTPUT
# BUILD OUTPUT
##############
##############
PROGRAM
:=
$(
PROGRAM
)
PROGRAM
:=
$(
PROGRAM
)
LIB
:=
$(
LIB
)
LIB
:=
$(
LIB
)
###################
###################
# PLATFORM SETTINGS
# PLATFORM SETTINGS
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
assdraw/Makefile
+
1
−
1
Voir le fichier @
ad7a8da8
...
@@ -38,7 +38,7 @@ assdraw_SOURCES := \
...
@@ -38,7 +38,7 @@ assdraw_SOURCES := \
$(
d
)
library.cpp
\
$(
d
)
library.cpp
\
$(
d
)
settings.cpp
$(
d
)
settings.cpp
assdraw_CPPFLAGS
:=
-I
$(
d
)
assdraw_CPPFLAGS
:=
-I
$(
d
)
$(
WX_CPPFLAGS
)
assdraw_CXXFLAGS
:=
$(
CXXFLAGS_WX
)
assdraw_CXXFLAGS
:=
$(
CXXFLAGS_WX
)
assdraw_OBJ
:=
$(
assdraw_SOURCES:.cpp
=
.o
)
assdraw_OBJ
:=
$(
assdraw_SOURCES:.cpp
=
.o
)
assdraw_LIBS
:=
$(
LIBS_WX
)
$(
LIBS_AGG
)
assdraw_LIBS
:=
$(
LIBS_WX
)
$(
LIBS_AGG
)
Ce diff est replié.
Cliquez pour l'agrandir.
configure.ac
+
16
−
9
Voir le fichier @
ad7a8da8
...
@@ -346,6 +346,7 @@ AS_IF([test x$agi_cv_with_iconv_const = xyes],
...
@@ -346,6 +346,7 @@ AS_IF([test x$agi_cv_with_iconv_const = xyes],
######
######
## agg
## agg
######
######
build_assdraw="no"
if test "x$build_linux" = "xyes"
if test "x$build_linux" = "xyes"
then
then
AC_CHECK_HEADERS([agg2/agg_config.h], [], [not_found_agg="yes"], [
AC_CHECK_HEADERS([agg2/agg_config.h], [], [not_found_agg="yes"], [
...
@@ -357,6 +358,7 @@ then
...
@@ -357,6 +358,7 @@ then
AC_MSG_ERROR([con't find agg2, it's needed to compile assdraw])
AC_MSG_ERROR([con't find agg2, it's needed to compile assdraw])
], [
], [
AC_MSG_NOTICE([agg2 was found, will compile assdraw])
AC_MSG_NOTICE([agg2 was found, will compile assdraw])
build_assdraw="yes"
])
])
AGG_LIBS=${AGG_LIBS:--lagg}
AGG_LIBS=${AGG_LIBS:--lagg}
AC_SUBST(AGG_LIBS)
AC_SUBST(AGG_LIBS)
...
@@ -538,29 +540,34 @@ AS_IF([test x$enable_debug_exceptions = xyes],
...
@@ -538,29 +540,34 @@ AS_IF([test x$enable_debug_exceptions = xyes],
################
################
# Widget support
# Widget support
################
################
WX_REQUIRED_CHECKS="std,gl,stc"
if test x$build_assdraw = xyes
then
WX_REQUIRED_CHECKS="${WX_REQUIRED_CHECKS},aui,propgrid"
fi
WX_CONFIG_OPTIONS
WX_CONFIG_OPTIONS
WX_STANDARD_OPTIONS([debug])
WX_STANDARD_OPTIONS([debug])
WX_DEBUG=$DEBUG
WX_DEBUG=$DEBUG
WX_UNICODE=$UNICODE
WX_UNICODE=$UNICODE
WX_CONFIG_CHECK([wx_required_version],,,[
std,gl,stc
],[$WXCONFIG_FLAGS])
WX_CONFIG_CHECK([wx_required_version],,,[
$WX_REQUIRED_CHECKS
],[$WXCONFIG_FLAGS])
AC_SUBST(WX_CONFIG_PATH)
AC_SUBST(WX_CONFIG_PATH)
AS_IF([test x$WX_VERSION = x],
AS_IF([test x$WX_VERSION = x],
[AC_MSG_FAILURE([wxWidgets detection failed, please set --with-wx* or add the libraries to your LIBS, CXX/CFLAGS.])])
[AC_MSG_FAILURE([wxWidgets detection failed, please set --with-wx* or add the libraries to your LIBS, CXX/CFLAGS.])])
AS_IF([test x$enable_sanity_checks != xno], [
AS_IF([test x$enable_sanity_checks != xno], [
AC_AGI_LINK([wxWidgets OpenGL support], [wxopengl], [wx/glcanvas.h], [$GL_CFLAGS $WX_CFLAGS], [$GL_LIBS $WX_LIBS],[
AC_AGI_LINK([wxWidgets OpenGL support], [wxopengl], [wx/glcanvas.h], [$GL_CFLAGS $WX_CFLAGS], [$GL_LIBS $WX_LIBS],[
#include <wx/glcanvas.h>
#include <wx/glcanvas.h>
int main(void) {
int main(void) {
wxGLCanvas *canvas;
wxGLCanvas *canvas;
wxGLContext *context;
wxGLContext *context;
return 0;
return 0;
} ])
} ])
AC_AGI_LINK([wxWidgets StyledTextCtrl support], [wxstc], [wx/stc/stc.h], [$WX_CFLAGS], [$WX_LIBS],[
AC_AGI_LINK([wxWidgets StyledTextCtrl support], [wxstc], [wx/stc/stc.h], [$WX_CFLAGS], [$WX_LIBS],[
#include <wx/stc/stc.h>
#include <wx/stc/stc.h>
int main(void) {
int main(void) {
wxStyledTextCtrl *canvas;
wxStyledTextCtrl *canvas;
return 0;
return 0;
} ])
} ])
])
])
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter